

/* ============================================================
   1. GLOBAL RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

img {
  background-color: #f1f5f9;
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

@media (max-width: 768px) {
  .container { padding: 0 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 8px; }
}

/* ============================================================
   2. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 231, 235, 0.15);
  min-height: 72px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* ======================================
                LOGO
====================================== */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.logo-link:hover { transform: scale(1.02); }

.logo-svg {
  height: 40px;
  width: auto;
  display: block;
}

/* ======================================
             END
====================================== */


/* ======================================
             Search Bar code 
====================================== */

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 420px;
  min-width: 200px;
  display: none;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 0 18px;
  border: 2px solid #ea4c89;
  box-shadow: 0 0 0 4px rgba(234, 76, 137, 0.08);
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  box-shadow: 0 0 0 4px rgba(234, 76, 137, 0.08);
}

.search-bar .search-icon {
  color: #ea4c89;
  font-size: 16px;
  margin-right: 12px;
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: #0f172a;
  width: 100%;
  outline: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.search-bar input::placeholder {
  color: #8b8b8b;
  font-weight: 500;
}

.suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 10px 6px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.3);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 1200;
  max-height: 340px;
  overflow-y: auto;
}
.suggestions.show { display: flex; }

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.12s ease;
  color: #0f172a;
}
.suggestion-item:hover { background: rgba(234, 76, 137, 0.06); }
.suggestion-item i {
  color: #ea4c89;
  font-size: 14px;
  width: 20px;
  text-align: center;
  opacity: 0.6;
}
.suggestion-item .sug-text { flex: 1; font-weight: 500; font-size: 0.9rem; }
.suggestion-item .sug-desc { font-size: 0.7rem; color: #8e8e93; font-weight: 400; }
.suggestion-item .sug-arrow { color: #ea4c89; font-size: 12px; opacity: 0.3; }

/* ======================================
             END
====================================== */

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-link i { font-size: 11px; color: #8e8e93; transition: transform 0.25s, color 0.2s; }
.nav-link:hover { background: rgba(234, 76, 137, 0.06); color: #ea4c89; }
.nav-link:hover i { color: #ea4c89; transform: rotate(180deg); }
.nav-link.active { color: #ea4c89; font-weight: 600; }

.mega-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  min-width: 270px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1100;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0, 0, 1);
  pointer-events: none;
}
.mega-dropdown.open {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mega-dropdown .heading {
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e8e93;
  padding: 4px 8px 10px 8px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  margin-bottom: 4px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.15s ease;
  font-weight: 460;
  font-size: 0.9rem;
  cursor: pointer;
}
.mega-item i { width: 22px; color: #ea4c89; font-size: 1rem; text-align: center; opacity: 0.6; }
.mega-item .mega-desc { font-size: 0.7rem; font-weight: 400; color: #8e8e93; margin-left: auto; padding-left: 10px; opacity: 0.6; }
.mega-item:hover { background: rgba(234, 76, 137, 0.05); }

.mega-dropdown .dropdown-cta {
  margin-top: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(229, 231, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 0.85rem;
  color: #ea4c89;
  text-decoration: none;
  border-radius: 16px;
  transition: background 0.15s ease;
  cursor: pointer;
}
.mega-dropdown .dropdown-cta:hover { background: rgba(234, 76, 137, 0.06); }
.mega-dropdown .dropdown-cta i { font-size: 14px; transition: transform 0.2s; }
.mega-dropdown .dropdown-cta:hover i { transform: translateX(4px); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-contact {
  background: #ea4c89;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 100px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(234, 76, 137, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.btn-contact:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(234, 76, 137, 0.35); background: #f05a96; }
.btn-contact:active { transform: scale(0.97); }
.btn-contact i { font-size: 0.9rem; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: transparent;
  border: none;
  z-index: 1100;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 4px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) {
  .nav-links-desktop { display: flex !important; }
  .search-wrapper { display: block !important; }
  .hamburger { display: none !important; }
  .mobile-menu { display: none !important; }
  .navbar { padding: 14px 36px; min-height: 80px; }
  .logo-img{height:65px;}
  .btn-contact { padding: 12px 28px; font-size: 0.9rem; }
  .search-bar { padding: 0 20px; }
  .search-bar input { padding: 13px 0; font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .navbar { padding: 8px 14px; min-height: 64px; }
  .logo-img { height: 42px; }
  .btn-contact { padding: 8px 14px; font-size: 0.7rem; gap: 6px; }
  .btn-contact i { font-size: 0.75rem; }
}

/* ============================================================
   3. MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 90px 24px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
  display: flex;
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu .mobile-search { margin-bottom: 16px; padding: 0 2px; }
.mobile-menu .mobile-search .search-bar {
  background: #f5f5f7;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 0 18px;
}
.mobile-menu .mobile-search .search-bar:focus-within { background: #ffffff; border-color: #ea4c89; }
.mobile-menu .mobile-search .search-bar input { padding: 14px 0; font-size: 0.95rem; }

.mobile-menu .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-weight: 500;
  font-size: 1.05rem;
  color: #0f172a;
  border-bottom: 1px solid rgba(229, 231, 235, 0.2);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu .mobile-nav-link i { color: #8e8e93; transition: transform 0.25s; font-size: 0.9rem; }
.mobile-menu .mobile-nav-link.active { color: #ea4c89; }

.mobile-menu .mobile-sub {
  padding-left: 16px;
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 4px 4px;
  border-left: 2px solid rgba(234, 76, 137, 0.12);
}
.mobile-menu .mobile-sub a {
  padding: 10px 12px;
  color: #334155;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s, background 0.15s;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu .mobile-sub a i { color: #ea4c89; font-size: 0.8rem; opacity: 0.5; width: 20px; }
.mobile-menu .mobile-sub a:hover { color: #ea4c89; background: rgba(234, 76, 137, 0.04); }

.mobile-menu .btn-contact { width: 100%; justify-content: center; margin-top: 16px; padding: 14px; font-size: 1rem; }

.mobile-menu .close-menu {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.6rem;
  color: #0f172a;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s;
}
.mobile-menu .close-menu:hover { transform: rotate(90deg); }

@media (max-width: 640px) {
  .mobile-menu { padding: 80px 18px 30px; }
  .mobile-menu .mobile-nav-link { font-size: 0.95rem; padding: 12px 2px; }
  .mobile-menu .mobile-sub a { font-size: 0.85rem; padding: 8px 10px; }
}

/* ============================================================
   PAGE DISPLAY CONTROL
   ============================================================ */
#packagePage,
#cheapPackagePage,
#allInclusivePage,
#manchesterPage,
#heathrowPage {
  display: none;
}

#homePageWrapper {
  overflow: hidden;
  position: relative;
}





